home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / plugins / HTMLWindow.jar / horst / BlockQuoteView.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-03-18  |  693 b   |  16 lines

  1. package horst;
  2.  
  3. public class BlockQuoteView extends BlockView {
  4.    public BlockQuoteView(View parent, Element e, HTMLPane container) {
  5.       super(parent, e, container);
  6.    }
  7.  
  8.    protected void init() {
  9.       ((View)this).setInsets(10, 20, 10, 20);
  10.    }
  11.  
  12.    protected boolean isWrappable() {
  13.       return true;
  14.    }
  15. }
  16.